Vcenter Identity Broker Tenants TokenInfo

Vcenter Identity Broker Tenants TokenInfo
Vcenter Identity Broker Tenants TokenInfo

The Vcenter Identity Broker Tenants TokenInfo schema contains detailed information about the tenant token.

This schema was added in vSphere API 8.0.1.0.

JSON Example
{
    "token_type": "string",
    "access_token": "string",
    "expires_in": 0
}
string
token_type
Required

The type of the token issued. The access token type provides the client with the information required to successfully utilize the access token to make a protected resource request (along with type-specific attributes). The client MUST NOT use an access token if it does not understand the token type.

"Bearer" token type as defined in RFC 6750 is supported.

This property was added in vSphere API 8.0.1.0.

string
access_token
Required

Tenant client access token issued by the authorization server.

This property was added in vSphere API 8.0.1.0.

integer As int64 As int64
expires_in
Optional

The lifetime in seconds of the access token. For example, the value "3600" denotes that the access token will expire in one hour from the time the response was generated.

This property was added in vSphere API 8.0.1.0.

missing or null if not applicable for issued token.